home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
misc
/
benchmarks
/
gc
/
lkrosm
/
bench.e
Wrap
Text File
|
2000-03-25
|
310b
|
32 lines
class BENCH
creation make
feature
s: STRING
make is
local
i, j: INTEGER;
do
from
i := 350_000;
until
i = 0
loop
from
j := 80;
until
j = 40
loop
!!s.make(j);
j := j - 1;
end;
i := i - 1;
end;
end;
end